js-multibase
JavaScript implementation of the multibase specification
Table of Contents
Install
In Node.js through npm
> npm install --save multibase
Browser: Browserify, Webpack, other bundlers
The code published to npm that gets loaded on require is in fact an ES5 transpiled version with the right shims added. This means that you can require it and use with your favourite bundler without having to adjust asset management process.
const multibase = require('multiubase')
In the Browser through <script>
tag
Loading this module through a script tag will make the Multibase
obj available in the global namespace.
<script src="https://unpkg.com/multibase/dist/index.min.js"></script>
<script src="https://unpkg.com/multibase/dist/index.js"></script>
Gotchas
You will need to use Node.js Buffer
API compatible, if you are running inside the browser, you can access it by multibase.Buffer
or you can load Feross's Buffer module.
Usage
Example
const multibase = require('multibase')
const encodedBuf = multibase.encode('base58btc', new Buffer('hey, how is it going'))
const decodedBuf = multibase.decode(encodedBuf)
console.log(decodedBuf.toString())
API
https://multiformats.github.io/js-multibase/
multibase
- Prefixes an encoded buffer with its multibase code
const multibased = multibase(<nameOrCode>, encodedBuf)
multibase.encode
- Encodes a buffer into one of the supported encodings, prefixing it with the multibase code
const encodedBuf = multibase.encode(<nameOrCode>, <buf>)
multibase.decode
- Decodes a buffer or string
const decodedBuf = multibase.decoded(bufOrString)
multibase.isEncoded
- Checks if buffer or string is encoded
const value = multibase.isEncoded(bufOrString)
Architecture and Encoding/Decoding
Multibase package defines all the supported bases and the location of their implementation in the constants.js file. A base is a class with a name, a code, an implementation and an alphabet.
class Base {
constructor (name, code, implementation, alphabet) {
}
}
The implementation
is an object where the encoding/decoding functions are implemented. It must take one argument, (the alphabet) following the base-x module architecture.
The alphabet
is the ordered set of defined symbols for a given base.
The idea behind this is that several bases may have implementations from different locations/modules so it's useful to have an object (and a summary) of all of them in one location (hence the constants.js).
All the supported bases are currently using the npm base-x module as their implementation. It is using bitwise maipulation to go from one base to another, so this module does not support padding at the moment.
Adding additional bases
If the base you are looking for is not supported yet in js-multibase and you know a good encoding/decoding algorithm, you can add support for this base easily by editing the constants.js file
(you'll need to create an issue about that beforehand since a code and a canonical name have to be defined):
const baseX = require('base-x')
const constants = [
['base1', '1', '', '1'],
['base2', '0', baseX, '01'],
['base8', '7', baseX, '01234567'],
]
The required package defines the implementation of the encoding/decoding process. It must comply by these rules :
encode
and decode
functions with to-be-encoded buffer as the only expected argument- the require call use the
alphabet
given as an argument for the encoding/decoding process
If no package is specified (such as for base1 in the above example, it means the base is not implemented yet)
Adding a new base requires the tests to be updated. Test files to be updated are :
describe('constants', () => {
it('constants indexed by name', () => {
const names = constants.names
expect(Object.keys(names).length).to.equal(constants-count)
})
it('constants indexed by code', () => {
const codes = constants.codes
expect(Object.keys(codes).length).to.equal(constants-count)
})
})
- multibase.spec.js
- if the base is implemented
const supportedBases = [
['base2', 'yes mani !', '01111001011001010111001100100000011011010110000101101110011010010010000000100001'],
['base8', 'yes mani !', '7171312714403326055632220041'],
['base10', 'yes mani !', '9573277761329450583662625'],
- if the base is not implemented yet
const supportedBases = [
Maintainers
Captain: @diasdavid
Contribute
Contributions welcome. Please check out the issues.
Check out our contributing document for more information on how we work, and about contributing in general. Please be aware that all interactions related to multiformats are subject to the IPFS Code of Conduct.
Small note: If editing the README, please conform to the standard-readme specification.
License
MIT © 2016 Protocol Labs Inc.